Write a C# Sharp program to remove all "a" in each string in given list of strings and return the new string
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
using System;
using System.Collections.Generic;
using System.Linq;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
List<string> mylist = test(new List<string>(new string[] { "abc", "cdaef", "js" , "php" }));
foreach(var i in mylist)
{
Console.Write(i.ToString()+" ");
}
}
public static List<string> test(List<string> str)
{
return str.Select(x => x.Replace("a", "")).ToList();
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال